home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / lib / emacs / 19.22 / lisp / texnfo-upd.el < prev    next >
Text File  |  1993-11-09  |  79KB  |  2,039 lines

  1. ;;; Texinfo mode utilities for updating nodes and menus in Texinfo files.
  2. ;;; Copyright 1989, 1990, 1991, 1992 Free Software Foundation
  3.  
  4. ;; Author: Robert J. Chassell      
  5. ;; Maintainer: bug-texinfo@prep.ai.mit.edu
  6. ;; Keywords: maint, tex, docs
  7.  
  8. ;; This file is part of GNU Emacs.
  9.  
  10. ;; GNU Emacs is free software; you can redistribute it and/or modify
  11. ;; it under the terms of the GNU General Public License as published by
  12. ;; the Free Software Foundation; either version 2, or (at your option)
  13. ;; any later version.
  14.  
  15. ;; GNU Emacs is distributed in the hope that it will be useful,
  16. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18. ;; GNU General Public License for more details.
  19.  
  20. ;; You should have received a copy of the GNU General Public License
  21. ;; along with GNU Emacs; see the file COPYING.  If not, write to
  22. ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  23.  
  24. ;;; Commentary:
  25.  
  26. ;;; Known bug: update commands fail to ignore @ignore.
  27.  
  28. ;;; Summary: how to use the updating commands
  29.  
  30. ; The node and menu updating functions automatically
  31.  
  32. ;   * insert missing `@node' lines,
  33. ;   * insert the `Next', `Previous' and `Up' pointers of a node,
  34. ;   * insert or update the menu for a section, 
  35. ;   * create a master menu for a Texinfo source file.
  36. ;
  37. ; Passed an argument, the `texinfo-update-node' and
  38. ; `texinfo-make-menu' functions do their jobs in the region.
  39. ;
  40. ; In brief, the functions for creating or updating nodes and menus, are:
  41. ;     texinfo-update-node (&optional region-p)            
  42. ;     texinfo-every-node-update ()                        
  43. ;     texinfo-sequential-node-update (&optional region-p)
  44. ;     texinfo-make-menu (&optional region-p)              
  45. ;     texinfo-all-menus-update ()                         
  46. ;     texinfo-master-menu ()
  47. ;
  48. ;     texinfo-insert-node-lines  (&optional title-p)
  49. ;     texinfo-indent-menu-description (column &optional region-p)
  50.  
  51. ; The `texinfo-column-for-description' variable specifies the column to
  52. ; which menu descriptions are indented. 
  53.  
  54. ; Texinfo file structure
  55. ; ----------------------
  56.  
  57. ; To use the updating commands, you must structure your Texinfo file
  58. ; hierarchically.  Each `@node' line, with the exception of the top
  59. ; node, must be accompanied by some kind of section line, such as an
  60. ; `@chapter' or `@section' line.  Each node-line/section-line
  61. ; combination must look like this:
  62.  
  63. ;      @node    Lists and Tables, Cross References, Structuring, Top
  64. ;      @comment node-name,        next,             previous,    up
  65. ;      @chapter Making Lists and Tables
  66.  
  67. ; or like this (without the `@comment' line):
  68.  
  69. ;      @node    Lists and Tables, Cross References, Structuring, Top
  70. ;      @chapter Making Lists and Tables
  71.  
  72. ; If the file has a `top' node, it must be called `top' or `Top' and
  73. ; be the first node in the file.
  74.  
  75.  
  76. ;;; The update node functions described in detail
  77.  
  78. ; The `texinfo-update-node' function without an argument inserts
  79. ; the correct next, previous and up pointers for the node in which
  80. ; point is located (i.e., for the node preceding point).
  81.  
  82. ; With an argument, the `texinfo-update-node' function inserts the
  83. ; correct next, previous and up pointers for the nodes inside the
  84. ; region.
  85.  
  86. ; It does not matter whether the  `@node' line has pre-existing
  87. ; `Next', `Previous', or `Up' pointers in it.  They are removed.
  88.  
  89. ; The `texinfo-every-node-update' function runs `texinfo-update-node'
  90. ; on the whole buffer.
  91.  
  92. ; The `texinfo-sequential-node-update' function inserts the
  93. ; immediately following and preceding node into the `Next' or
  94. ; `Previous' pointers regardless of their hierarchical level.  This is
  95. ; only useful for certain kinds of text, like a novel, which you go
  96. ; through sequentially.
  97.  
  98.  
  99. ;;; The menu making functions described in detail
  100.  
  101. ; The `texinfo-make-menu' function without an argument creates or
  102. ; updates a menu for the section encompassing the node that follows
  103. ; point.  With an argument, it makes or updates menus for the nodes
  104. ; within or part of the marked region.
  105.  
  106. ; Whenever an existing menu is updated, the descriptions from
  107. ; that menu are incorporated into the new menu.  This is done by copying
  108. ; descriptions from the existing menu to the entries in the new menu
  109. ; that have the same node names.  If the node names are different, the
  110. ; descriptions are not copied to the new menu.
  111.  
  112. ; Menu entries that refer to other Info files are removed since they
  113. ; are not a node within current buffer.  This is a deficiency.
  114.  
  115. ; The `texinfo-all-menus-update' function runs `texinfo-make-menu'
  116. ; on the whole buffer.
  117.  
  118. ; The `texinfo-master-menu' function creates an extended menu located
  119. ; after the top node.  (The file must have a top node.)  The function
  120. ; first updates all the regular menus in the buffer (incorporating the
  121. ; descriptions from pre-existing menus), and then constructs a master
  122. ; menu that includes every entry from every other menu.  (However, the
  123. ; function cannot update an already existing master menu; if one
  124. ; exists, it must be removed before calling the function.)
  125.  
  126. ; The `texinfo-indent-menu-description' function indents every
  127. ; description in the menu following point, to the specified column.
  128. ; Non-nil argument (prefix, if interactive) means indent every
  129. ; description in every menu in the region.  This function does not
  130. ; indent second and subsequent lines of a multi-line description.
  131.  
  132. ; The `texinfo-insert-node-lines' function inserts `@node' before the
  133. ; `@chapter', `@section', and such like lines of a region in a Texinfo
  134. ; file where the `@node' lines are missing.
  135. ; With a non-nil argument (prefix, if interactive), the function not
  136. ; only inserts `@node' lines but also inserts the chapter or section
  137. ; titles as the names of the corresponding nodes; and inserts titles
  138. ; as node names in pre-existing `@node' lines that lack names.
  139. ; Since node names should be more concise than section or chapter
  140. ; titles, node names so inserted will need to be edited manually.
  141.  
  142.  
  143. ;;; Code:
  144.  
  145. ;;; The menu making functions
  146.  
  147. (defun texinfo-make-menu (&optional region-p)
  148.   "Without any prefix argument, make or update a menu.
  149. Make the menu for the section enclosing the node found following point.
  150.  
  151. Non-nil argument (prefix, if interactive) means make or update menus
  152. for nodes within or part of the marked region.
  153.  
  154. Whenever a menu exists, and is being updated, the descriptions that
  155. are associated with node names in the pre-existing menu are
  156. incorporated into the new menu.  Otherwise, the nodes' section titles
  157. are inserted as descriptions."
  158.   
  159.   (interactive "P")
  160.   (if (not region-p)
  161.       (let ((level (texinfo-hierarchic-level)))
  162.         (texinfo-make-one-menu level)
  163.         (message "Done...updated the menu.  You may save the buffer."))
  164.     ;; else
  165.     (message "Making or updating menus in %s... " (buffer-name))
  166.     (let ((beginning (region-beginning))
  167.       (region-end (region-end))
  168.           (level (progn         ; find section type following point
  169.                    (goto-char (region-beginning))
  170.                    (texinfo-hierarchic-level))))
  171.       (if (= region-end beginning)
  172.           (error "Please mark a region!"))
  173.       (save-excursion
  174.         (save-restriction
  175.           (widen)
  176.           
  177.           (while  (texinfo-find-lower-level-node level region-end)
  178.             (setq level (texinfo-hierarchic-level)) ; new, lower level
  179.             (texinfo-make-one-menu level))
  180.           
  181.           (while (and (< (point) region-end)
  182.                       (texinfo-find-higher-level-node level region-end))
  183.             (setq level (texinfo-hierarchic-level))
  184.             (while (texinfo-find-lower-level-node level region-end)
  185.               (setq level (texinfo-hierarchic-level)) ; new, lower level
  186.               (texinfo-make-one-menu level))))))
  187.     (message "Done...updated menus.  You may save the buffer.")))
  188.  
  189. (defun texinfo-make-one-menu (level)
  190.   "Make a menu of all the appropriate nodes in this section.
  191. `Appropriate nodes' are those associated with sections that are 
  192. at the level specified by LEVEL.  Point is left at the end of menu."
  193.   (let*
  194.       ((case-fold-search t)
  195.        (beginning
  196.     (save-excursion
  197.       (goto-char (texinfo-update-menu-region-beginning level))
  198.       (end-of-line)
  199.       (point)))
  200.        (end (texinfo-update-menu-region-end level))
  201.        (first (texinfo-menu-first-node beginning end))
  202.        (node-name (progn
  203.                     (goto-char beginning)
  204.                     (beginning-of-line)
  205.                     (texinfo-copy-node-name)))
  206.        (new-menu-list (texinfo-make-menu-list beginning end level)))
  207.     (if (texinfo-old-menu-p beginning first)
  208.         (progn
  209.           (texinfo-incorporate-descriptions new-menu-list)
  210.           (texinfo-incorporate-menu-entry-names new-menu-list)
  211.           (texinfo-delete-old-menu beginning first)))
  212.     (texinfo-insert-menu new-menu-list node-name)))
  213.  
  214. (defun texinfo-all-menus-update (&optional update-all-nodes-p)
  215.   "Update every regular menu in a Texinfo file.
  216. Update pre-existing master menu, if there is one.
  217.  
  218. If called with a non-nil argument, this function first updates all the
  219. nodes in the buffer before updating the menus."
  220.   (interactive "P")
  221.   (let ((case-fold-search t)
  222.         master-menu-p)
  223.     (save-excursion
  224.       (push-mark (point-max) t)
  225.       (goto-char (point-min))
  226.       (message "Checking for a master menu in %s ... "(buffer-name))
  227.       (save-excursion
  228.         (if (re-search-forward texinfo-master-menu-header nil t)
  229.             ;; Remove detailed master menu listing
  230.             (progn
  231.               (setq master-menu-p t)
  232.               (goto-char (match-beginning 0))
  233.               (let ((end-of-detailed-menu-descriptions
  234.                      (save-excursion     ; beginning of end menu line
  235.                        (goto-char (texinfo-menu-end))
  236.                        (beginning-of-line) (forward-char -1)
  237.                        (point))))
  238.                 (delete-region (point) end-of-detailed-menu-descriptions)))))
  239.       
  240.       (if update-all-nodes-p
  241.           (progn
  242.             (message "Updating all nodes in %s ... " (buffer-name))
  243.             (sleep-for 2)
  244.             (push-mark (point-max) t)
  245.             (goto-char (point-min))
  246.             (texinfo-update-node t)))
  247.       
  248.       (message "Updating all menus in %s ... " (buffer-name))        
  249.       (sleep-for 2)
  250.       (push-mark (point-max) t)
  251.       (goto-char (point-min))
  252.       (texinfo-make-menu t)
  253.       
  254.       (if master-menu-p
  255.           (progn
  256.             (message "Updating the master menu in %s... " (buffer-name))
  257.             (sleep-for 2)
  258.             (texinfo-master-menu nil))))
  259.     
  260.     (message "Done...updated all the menus.  You may save the buffer.")))
  261.  
  262. (defun texinfo-find-lower-level-node (level region-end)
  263.   "Search forward from point for node at any level lower than LEVEL.
  264. Search is limited to the end of the marked region, REGION-END, 
  265. and to the end of the menu region for the level.
  266.  
  267. Return t if the node is found, else nil.  Leave point at the beginning
  268. of the node if one is found; else do not move point."
  269.   (let ((case-fold-search t))
  270.     (if (and (< (point) region-end)
  271.              (re-search-forward
  272.               (concat
  273.                "\\(^@node\\).*\n"         ; match node line
  274.                "\\(\\(\\(^@c\\).*\n\\)"   ; match comment line, if any
  275.                "\\|"                      ; or
  276.                "\\(^@ifinfo[ ]*\n\\)\\)?" ; ifinfo line, if any
  277.                (eval (cdr (assoc level texinfo-update-menu-lower-regexps))))
  278.               ;; the next higher level node marks the end of this
  279.               ;; section, and no lower level node will be found beyond
  280.               ;; this position even if region-end is farther off
  281.               (texinfo-update-menu-region-end level) 
  282.               t))
  283.         (goto-char (match-beginning 1)))))
  284.  
  285. (defun texinfo-find-higher-level-node (level region-end)
  286.   "Search forward from point for node at any higher level than argument LEVEL.
  287. Search is limited to the end of the marked region, REGION-END.
  288.  
  289. Return t if the node is found, else nil.  Leave point at the beginning
  290. of the node if one is found; else do not move point."
  291.   (let ((case-fold-search t))
  292.     (cond
  293.      ((or (string-equal "top" level) (string-equal "chapter" level))
  294.       (if (re-search-forward "^@node [ \t]*top[ \t]*\\(,\\|$\\)" region-end t)
  295.           (progn (beginning-of-line) t)))
  296.      (t
  297.       (if (re-search-forward
  298.            (concat
  299.             "\\(^@node\\).*\n"              ; match node line
  300.             "\\(\\(\\(^@c\\).*\n\\)"        ; match comment line, if any
  301.             "\\|"                           ; or
  302.             "\\(^@ifinfo[ ]*\n\\)\\)?"      ; ifinfo line, if any
  303.             (eval (cdr (assoc level texinfo-update-menu-higher-regexps))))
  304.            region-end t)
  305.           (progn (beginning-of-line) t))))))
  306.  
  307.  
  308. ;;; Making the list of new menu entries
  309.  
  310. (defun texinfo-make-menu-list (beginning end level)
  311.   "Make a list of node names and their descriptions.
  312. Point is left at the end of the menu region, but the menu is not inserted.
  313.  
  314. First argument is position from which to start making menu list; 
  315. second argument is end of region in which to try to locate entries;
  316. third argument is the level of the nodes that are the entries.
  317.  
  318. Node names and descriptions are dotted pairs of strings.  Each pair is
  319. an element of the list.  If the description does not exist, the
  320. element consists only of the node name."
  321.   (goto-char beginning)
  322.   (let (new-menu-list)
  323.     (while (texinfo-menu-locate-entry-p level end)
  324.       (setq new-menu-list 
  325.             (cons (cons 
  326.                    (texinfo-copy-node-name)
  327.                    (prog1 "" (forward-line 1)))
  328.                    ;; Use following to insert section titles automatically.
  329.                    ;; (texinfo-copy-section-title))
  330.                   new-menu-list)))
  331.     (reverse new-menu-list)))
  332.  
  333. (defun texinfo-menu-locate-entry-p (level search-end)
  334.   "Find a node that will be part of menu for this section.
  335. First argument is a string such as \"section\" specifying the general
  336. hierarchical level of the menu; second argument is a position
  337. specifying the end of the search.
  338.  
  339. The function returns t if the node is found, else nil.  It searches
  340. forward from point, and leaves point at the beginning of the node.
  341.  
  342. The function finds entries of the same type.  Thus `subsections' and
  343. `unnumberedsubsecs' will appear in the same menu."
  344.   (let ((case-fold-search t))
  345.     (if (re-search-forward
  346.          (concat
  347.           "\\(^@node\\).*\n"              ; match node line
  348.           "\\(\\(\\(^@c\\).*\n\\)"        ; match comment line, if any
  349.           "\\|"                           ; or
  350.           "\\(^@ifinfo[ ]*\n\\)\\)?"      ; ifinfo line, if any
  351.           (eval
  352.            (cdr (assoc level texinfo-update-menu-same-level-regexps))))
  353.          search-end
  354.          t)
  355.         (goto-char (match-beginning 1)))))
  356.  
  357. (defun texinfo-copy-node-name ()
  358.   "Return the node name as a string.
  359.  
  360. Start with point at the beginning of the node line; copy the text
  361. after the node command up to the first comma on the line, if any, and
  362. return the text as a string.  Leaves point at the beginning of the
  363. line.  If there is no node name, returns an empty string."
  364.   
  365.   (save-excursion
  366.     (buffer-substring
  367.      (progn (forward-word 1)              ; skip over node command
  368.             (skip-chars-forward " \t")    ; and over spaces
  369.             (point))
  370.      (if (search-forward
  371.           ","
  372.           (save-excursion (end-of-line) (point)) t) ; bound search
  373.          (1- (point))
  374.        (end-of-line) (point)))))
  375.  
  376. (defun texinfo-copy-section-title ()
  377.   "Return the title of the section as a string.
  378. The title is used as a description line in the menu when one does not
  379. already exist.
  380.  
  381. Move point to the beginning of the appropriate section line by going
  382. to the start of the text matched by last regexp searched for, which
  383. must have been done by `texinfo-menu-locate-entry-p'."
  384.  
  385.   ;; could use the same re-search as in `texinfo-menu-locate-entry-p'
  386.   ;; instead of using `match-beginning'; such a variation would be
  387.   ;; more general, but would waste information already collected
  388.  
  389.   (goto-char (match-beginning 7))       ; match section name 
  390.  
  391.   (buffer-substring
  392.    (progn (forward-word 1)              ; skip over section type
  393.           (skip-chars-forward " \t")    ; and over spaces
  394.           (point))
  395.    (progn (end-of-line) (point))))
  396.  
  397.  
  398. ;;; Handling the old menu
  399.  
  400. (defun texinfo-old-menu-p (beginning first)
  401.   "Move point to the beginning of the menu for this section, if any.
  402. Otherwise move point to the end of the first node of this section.
  403. Return t if a menu is found, nil otherwise.
  404.  
  405. First argument is the position of the beginning of the section in which
  406. the menu will be located; second argument is the position of the first
  407. node within the section.
  408.  
  409. If no menu is found, the function inserts two newlines just before the
  410. end of the section, and leaves point there where a menu ought to be."
  411.   (goto-char beginning)
  412.   (if (not (re-search-forward "^@menu" first 'goto-end))
  413.       (progn (insert "\n\n") (forward-line -2) nil)
  414.     t))
  415.  
  416. (defun texinfo-incorporate-descriptions (new-menu-list)
  417.   "Copy the old menu line descriptions that exist to the new menu.
  418.  
  419. Point must be at beginning of old menu.
  420.  
  421. If the node-name of the new menu is found in the old menu, insert the
  422. old description into the new entry.
  423.  
  424. For this function, the new menu is a list made up of lists of dotted
  425. pairs in which the first element of the pair is the node name and the
  426. second element the description.  The new menu is changed destructively.
  427. The old menu is the menu as it appears in the texinfo file."
  428.   
  429.   (let ((new-menu-list-pointer new-menu-list)
  430.         (end-of-menu (texinfo-menu-end)))
  431.     (while new-menu-list
  432.       (save-excursion                   ; keep point at beginning of menu 
  433.         (if (re-search-forward
  434.              ;; Existing nodes can have the form
  435.              ;;     * NODE NAME:: DESCRIPTION
  436.              ;; or
  437.              ;;     * MENU ITEM: NODE NAME.     DESCRIPTION.
  438.              ;; 
  439.              ;; Recognize both when looking for the description.
  440.              (concat "\\* \\("              ; so only menu entries are found
  441.                      (car (car new-menu-list)) "::"
  442.                      "\\|"
  443.                      ".*: " (car (car new-menu-list)) "[.,\t\n]"
  444.                      "\\)"
  445.                      )               ; so only complete entries are found
  446.              end-of-menu
  447.              t) 
  448.             (setcdr (car new-menu-list) 
  449.                     (texinfo-menu-copy-old-description end-of-menu))))
  450.       (setq new-menu-list (cdr new-menu-list))) 
  451.     (setq new-menu-list new-menu-list-pointer)))
  452.  
  453. (defun texinfo-incorporate-menu-entry-names (new-menu-list)
  454.   "Copy any old menu entry names to the new menu.
  455.  
  456. Point must be at beginning of old menu.
  457.  
  458. If the node-name of the new menu entry cannot be found in the old
  459. menu, do nothing.
  460.  
  461. For this function, the new menu is a list made up of lists of dotted
  462. pairs in which the first element of the pair is the node name and the
  463. second element is the description (or nil).
  464.  
  465. If we find an existing menu entry name, we change the first element of
  466. the pair to be another dotted pair in which the car is the menu entry
  467. name and the cdr is the node name.
  468.  
  469. NEW-MENU-LIST is changed destructively.  The old menu is the menu as it
  470. appears in the texinfo file."
  471.   
  472.   (let ((new-menu-list-pointer new-menu-list)
  473.         (end-of-menu (texinfo-menu-end)))
  474.     (while new-menu-list
  475.       (save-excursion                   ; keep point at beginning of menu 
  476.         (if (re-search-forward
  477.              ;; Existing nodes can have the form
  478.              ;;     * NODE NAME:: DESCRIPTION
  479.              ;; or
  480.              ;;     * MENU ITEM: NODE NAME.     DESCRIPTION.
  481.              ;; 
  482.              ;; We're interested in the second case.
  483.              (concat "\\* "              ; so only menu entries are found
  484.                      "\\(.*\\): " (car (car new-menu-list))  "[.,\t\n]")
  485.              end-of-menu
  486.              t)
  487.             (setcar
  488.               (car new-menu-list)  ; replace the node name
  489.               (cons (buffer-substring (match-beginning 1) (match-end 1))
  490.                     (car (car new-menu-list)))))
  491.       (setq new-menu-list (cdr new-menu-list))))
  492.     (setq new-menu-list new-menu-list-pointer)))
  493.  
  494. (defun texinfo-menu-copy-old-description (end-of-menu)
  495.   "Return description field of old menu line as string.
  496. Point must be located just after the node name.  Point left before description.
  497. Single argument, END-OF-MENU, is position limiting search."
  498.   (skip-chars-forward "[:.,\t\n ]+")
  499.   ;; don't copy a carriage return at line beginning with asterisk!
  500.   ;; do copy a description that begins with an `@'!
  501.   ;; !! Known bug: does not copy descriptions starting with ^|\{?* etc.
  502.   (if (and (looking-at "\\(\\w+\\|@\\)")    
  503.            (not (looking-at "\\(^\\* \\|^@end menu\\)")))  
  504.       (buffer-substring
  505.        (point)
  506.        (save-excursion
  507.          (re-search-forward "\\(^\\* \\|^@end menu\\)" end-of-menu t)
  508.          (forward-line -1)
  509.          (end-of-line)                  ; go to end of last description line
  510.          (point)))
  511.     ""))
  512.  
  513. (defun texinfo-menu-end ()
  514.   "Return position of end of menu. Does not change location of point.
  515. Signal an error if not end of menu."
  516.   (save-excursion
  517.     (if (re-search-forward "^@end menu" nil t)
  518.         (point)
  519.       (error "Menu does not have an end."))))
  520.  
  521. (defun texinfo-delete-old-menu (beginning first)
  522.   "Delete the old menu.  Point must be in or after menu.
  523. First argument is position of the beginning of the section in which
  524. the menu will be located; second argument is the position of the first
  525. node within the section."
  526.   ;; No third arg to search, so error if search fails.
  527.   (re-search-backward "^@menu" beginning)
  528.   (delete-region (point)
  529.                  (save-excursion
  530.                    (re-search-forward "^@end menu" first)
  531.                    (point))))
  532.  
  533.  
  534. ;;; Inserting new menu
  535.  
  536. ;; try 32, but perhaps 24 is better
  537. (defvar texinfo-column-for-description 32
  538.   "*Column at which descriptions start in a Texinfo menu.")
  539.  
  540. (defun texinfo-insert-menu (menu-list node-name)
  541.   "Insert formatted menu at point.
  542. Indents the first line of the description, if any, to the value of
  543. texinfo-column-for-description.
  544.  
  545. MENU-LIST has form:
  546.  
  547.     \(\(\"node-name1\" . \"description\"\) 
  548.     \(\"node-name2\" . \"description\"\) ... \)
  549.  
  550. However, the description field might be nil.
  551.  
  552. Also, the node-name field might itself be a dotted pair (call it P) of
  553. strings instead of just a string.  In that case, the car of P
  554. is the menu entry name, and the cdr of P is the node name."
  555.   
  556.   (insert "@menu\n")
  557.   (while menu-list
  558.     ;; Every menu entry starts with a star and a space.
  559.     (insert "* ")
  560.     
  561.     ;; Insert the node name (and menu entry name, if present).
  562.     (let ((node-part (car (car menu-list))))
  563.       (if (stringp node-part)
  564.           ;; "Double colon" entry line; menu entry and node name are the same,
  565.           (insert (format "%s::" node-part))  
  566.         ;; "Single colon" entry line; menu entry and node name are different.
  567.         (insert (format "%s: %s." (car node-part) (cdr node-part)))))
  568.     
  569.     ;; Insert the description, if present.
  570.     (if (cdr (car menu-list))
  571.         (progn
  572.           ;; Move to right place.
  573.           (indent-to texinfo-column-for-description 2) 
  574.           ;; Insert description.
  575.           (insert (format "%s" (cdr (car menu-list))))))  
  576.  
  577.     (insert "\n") ; end this menu entry
  578.     (setq menu-list (cdr menu-list)))
  579.   (insert "@end menu")
  580.   (message 
  581.    "Updated \"%s\" level menu following node: %s ... " level node-name))
  582.  
  583.  
  584. ;;; Starting menu descriptions by inserting titles
  585.  
  586. (defun texinfo-start-menu-description ()
  587.   "In this menu entry, insert the node's section title as a description. 
  588. Position point at beginning of description ready for editing.
  589. Do not insert a title if the line contains an existing description.
  590.  
  591. You will need to edit the inserted text since a useful description
  592. complements the node name rather than repeats it as a title does."
  593.   
  594.   (interactive)
  595.   (let (beginning end node-name title)
  596.     (save-excursion
  597.     (beginning-of-line)  
  598.       (if (search-forward "* " (save-excursion (end-of-line) (point)) t)
  599.           (progn (skip-chars-forward " \t")
  600.                  (setq beginning (point)))
  601.         (error "This is not a line in a menu!"))
  602.       
  603.       (cond
  604.         ;; "Double colon" entry line; menu entry and node name are the same,
  605.        ((search-forward "::" (save-excursion (end-of-line) (point)) t)
  606.         (if (looking-at "[ \t]*[^ \t\n]+")
  607.             (error "Descriptive text already exists."))
  608.         (skip-chars-backward ": \t")
  609.         (setq node-name (buffer-substring beginning (point))))
  610.        
  611.        ;; "Single colon" entry line; menu entry and node name are different.
  612.        ((search-forward ":" (save-excursion (end-of-line) (point)) t)
  613.         (skip-chars-forward " \t")
  614.         (setq beginning (point))
  615.         ;; Menu entry line ends in a period, comma, or tab. 
  616.         (if (re-search-forward "[.,\t]"
  617.                                (save-excursion (forward-line 1) (point)) t)
  618.             (progn
  619.               (if (looking-at "[ \t]*[^ \t\n]+")
  620.                   (error "Descriptive text already exists."))
  621.               (skip-chars-backward "., \t")
  622.               (setq node-name (buffer-substring beginning (point))))
  623.           ;; Menu entry line ends in a return.
  624.           (re-search-forward ".*\n"
  625.                            (save-excursion (forward-line 1) (point)) t)
  626.           (skip-chars-backward " \t\n")
  627.           (setq node-name (buffer-substring beginning (point)))
  628.           (if (= 0 (length node-name))
  629.               (error "No node name on this line.")
  630.             (insert "."))))
  631.        (t (error "No node name on this line.")))
  632.       ;; Search for node that matches node name, and copy the section title.
  633.       (if (re-search-forward
  634.            (concat 
  635.             "^@node[ \t]+"
  636.             node-name
  637.             ".*\n"                             ; match node line
  638.             "\\("
  639.             "\\(\\(^@c \\|^@comment\\).*\n\\)" ; match comment line, if any
  640.             "\\|"                              ; or
  641.             "\\(^@ifinfo[ ]*\n\\)"             ; ifinfo line, if any
  642.             "\\)?")
  643.            nil t)
  644.           (progn
  645.             (setq title
  646.                   (buffer-substring
  647.                    ;; skip over section type
  648.                    (progn (forward-word 1) 
  649.                           ;; and over spaces
  650.                           (skip-chars-forward " \t") 
  651.                           (point))
  652.                    (progn (end-of-line)
  653.                           (skip-chars-backward " \t")
  654.                           (point)))))
  655.         (error "Cannot find node to match node name in menu entry.")))
  656.     ;; Return point to the menu and insert the title.
  657.     (end-of-line)
  658.     (delete-region
  659.      (point)
  660.      (save-excursion (skip-chars-backward " \t") (point)))
  661.     (indent-to texinfo-column-for-description 2)
  662.     (save-excursion (insert title))))
  663.  
  664.  
  665. ;;; Handling description indentation
  666.  
  667. ; Since the make-menu functions indent descriptions, these functions
  668. ; are useful primarily for indenting a single menu specially.
  669.  
  670. (defun texinfo-indent-menu-description (column &optional region-p)
  671.   "Indent every description in menu following point to COLUMN.  
  672. Non-nil argument (prefix, if interactive) means indent every
  673. description in every menu in the region.  Does not indent second and
  674. subsequent lines of a multi-line description."
  675.   
  676.   (interactive
  677.    "nIndent menu descriptions to (column number): \nP")
  678.   (save-excursion
  679.     (save-restriction
  680.       (widen)
  681.       (if (not region-p)
  682.           (progn
  683.             (re-search-forward "^@menu")
  684.             (texinfo-menu-indent-description column)
  685.             (message
  686.              "Indented descriptions in menu.  You may save the buffer."))
  687.         ;;else
  688.         (message "Indenting every menu description in region... ")
  689.         (goto-char (region-beginning))
  690.         (while (and (< (point) (region-end))
  691.                     (texinfo-locate-menu-p))
  692.           (forward-line 1)
  693.           (texinfo-menu-indent-description column))
  694.         (message "Indenting done.  You may save the buffer.")))))
  695.  
  696. (defun texinfo-menu-indent-description (to-column-number)
  697.   "Indent the Texinfo file menu description to TO-COLUMN-NUMBER.
  698. Start with point just after the word `menu' in the `@menu' line and
  699. leave point on the line before the `@end menu' line.  Does not indent
  700. second and subsequent lines of a multi-line description."
  701.   (let* ((beginning-of-next-line (point)))
  702.     (while (< beginning-of-next-line
  703.               (save-excursion     ; beginning of end menu line
  704.                 (goto-char (texinfo-menu-end))
  705.                 (beginning-of-line)
  706.                 (point)))
  707.  
  708.       (if (re-search-forward  "\\* \\(.*::\\|.*: [^.,\t\n]+[.,\t]\\)" 
  709.            (texinfo-menu-end) 
  710.            t)
  711.           (progn
  712.             (let ((beginning-white-space (point)))
  713.               (skip-chars-forward " \t")  ; skip over spaces
  714.               (if (looking-at "\\(@\\|\\w\\)+") ; if there is text
  715.                   (progn
  716.                     ;; remove pre-existing indentation
  717.                     (delete-region beginning-white-space (point))
  718.                     (indent-to-column to-column-number))))))
  719.       ;; position point at beginning of next line
  720.       (forward-line 1)                  
  721.       (setq beginning-of-next-line (point)))))
  722.  
  723.  
  724. ;;; Making the master menu
  725.  
  726. (defun texinfo-master-menu (update-all-nodes-menus-p)
  727.   "Make a master menu for a whole Texinfo file.
  728. Non-nil argument (prefix, if interactive) means first update all
  729. existing nodes and menus.  Remove pre-existing master menu, if there is one.
  730.  
  731. This function creates a master menu that follows the top node.  The
  732. master menu includes every entry from all the other menus.  It
  733. replaces any existing ordinary menu that follows the top node.
  734.  
  735. If called with a non-nil argument, this function first updates all the
  736. menus in the buffer (incorporating descriptions from pre-existing
  737. menus) before it constructs the master menu.
  738.  
  739. The function removes the detailed part of an already existing master
  740. menu.  This action depends on the pre-exisitng master menu using the
  741. standard `texinfo-master-menu-header'.
  742.  
  743. The master menu has the following format, which is adapted from the
  744. recommendation in the Texinfo Manual:
  745.  
  746.    * The first part contains the major nodes in the Texinfo file: the
  747.      nodes for the chapters, chapter-like sections, and the major
  748.      appendices.  This includes the indices, so long as they are in
  749.      chapter-like sections, such as unnumbered sections.
  750.  
  751.    * The second and subsequent parts contain a listing of the other,
  752.      lower level menus, in order.  This way, an inquirer can go
  753.      directly to a particular node if he or she is searching for
  754.      specific information.
  755.  
  756. Each of the menus in the detailed node listing is introduced by the
  757. title of the section containing the menu."
  758.   
  759.   (interactive "P")
  760.   (let ((case-fold-search t))
  761.     (widen)
  762.     (goto-char (point-min))
  763.     
  764.     ;; Move point to location after `top'.
  765.     (if (not (re-search-forward "^@node [ \t]*top[ \t]*\\(,\\|$\\)" nil t))
  766.         (error "This buffer needs a Top node!"))
  767.     
  768.     (let ((first-chapter                  
  769.            (save-excursion
  770.              (or (re-search-forward "^@node" nil t)
  771.                  (error "Too few nodes for a master menu!"))
  772.              (point))))
  773.       (if (re-search-forward texinfo-master-menu-header first-chapter t)
  774.           ;; Remove detailed master menu listing
  775.           (progn
  776.             (goto-char (match-beginning 0))
  777.             (let ((end-of-detailed-menu-descriptions
  778.                    (save-excursion     ; beginning of end menu line
  779.                      (goto-char (texinfo-menu-end))
  780.                      (beginning-of-line) (forward-char -1)
  781.                      (point))))
  782.               (delete-region (point) end-of-detailed-menu-descriptions)))))
  783.     
  784.     (if update-all-nodes-menus-p
  785.         (progn
  786.           (message "Making a master menu in %s ...first updating all nodes... "
  787.                    (buffer-name))
  788.           (sleep-for 2)
  789.           (push-mark (point-max) t)
  790.           (goto-char (point-min))
  791.           (texinfo-update-node t)
  792.           
  793.           (message "Updating all menus in %s ... " (buffer-name))        
  794.           (sleep-for 2)
  795.           (push-mark (point-max) t)
  796.           (goto-char (point-min))
  797.           (texinfo-make-menu t)))
  798.     
  799.     (message "Now making the master menu in %s... " (buffer-name))
  800.     (sleep-for 2)
  801.     (goto-char (point-min))
  802.     (texinfo-insert-master-menu-list
  803.      (texinfo-master-menu-list))
  804.     
  805.     ;; Remove extra newlines that texinfo-insert-master-menu-list
  806.     ;; may have inserted.
  807.     
  808.     (save-excursion
  809.       (goto-char (point-min))
  810.       
  811.       (if (re-search-forward texinfo-master-menu-header nil t)
  812.           (progn
  813.             (goto-char (match-beginning 0))
  814.             (insert "\n")
  815.             (delete-blank-lines)
  816.             (goto-char (point-min))))
  817.  
  818.       (re-search-forward "^@menu")
  819.       (forward-line -1)
  820.       (delete-blank-lines)
  821.       
  822.       (re-search-forward "^@end menu")
  823.       (forward-line 1)
  824.       (delete-blank-lines))
  825.     
  826.     (message
  827.      "Done...completed making master menu.  You may save the buffer.")))
  828.  
  829. (defun texinfo-master-menu-list ()
  830.   "Return a list of menu entries and header lines for the master menu.
  831.  
  832. Start with the menu for chapters and indices and then find each
  833. following menu and the title of the node preceding that menu.
  834.  
  835. The master menu list has this form:
  836.  
  837.     \(\(\(... \"entry-1-2\"  \"entry-1\"\) \"title-1\"\)
  838.       \(\(... \"entry-2-2\"  \"entry-2-1\"\) \"title-2\"\)
  839.       ...\)
  840.  
  841. However, there does not need to be a title field."
  842.  
  843.   (let (master-menu-list)
  844.     (while (texinfo-locate-menu-p)
  845.       (setq master-menu-list 
  846.             (cons (list
  847.                    (texinfo-copy-menu)
  848.                    (texinfo-copy-menu-title))
  849.                   master-menu-list)))
  850.     (reverse master-menu-list)))
  851.  
  852. (defun texinfo-insert-master-menu-list (master-menu-list)
  853.   "Format and insert the master menu in the current buffer."
  854.   (goto-char (point-min))
  855.   ;; Insert a master menu only after `Top' node and before next node
  856.   ;; \(or include file if there is no next node\).
  857.   (if (not (re-search-forward "^@node [ \t]*top[ \t]*\\(,\\|$\\)" nil t))
  858.       (error "This buffer needs a Top node!"))
  859.   (let ((first-chapter
  860.          (save-excursion (re-search-forward "^@node\\|^@include") (point))))
  861.     (if (not (re-search-forward "^@menu" first-chapter t))
  862.         (error
  863.          "Buffer lacks ordinary `Top' menu in which to insert master.")))
  864.   (beginning-of-line)
  865.   (delete-region      ; buffer must have ordinary top menu
  866.    (point)   
  867.    (save-excursion (re-search-forward "^@end menu") (point)))
  868.   
  869.   (save-excursion                       ; leave point at beginning of menu
  870.     ;; Handle top of menu
  871.     (insert "\n@menu\n")
  872.     ;; Insert chapter menu entries
  873.     (setq this-very-menu-list (reverse (car (car master-menu-list))))
  874.     ;; Tell user what is going on.
  875.     (message "Inserting chapter menu entry: %s ... " this-very-menu-list)
  876.     (while this-very-menu-list
  877.       (insert "* " (car this-very-menu-list) "\n")
  878.       (setq this-very-menu-list (cdr this-very-menu-list)))
  879.     
  880.     (setq master-menu-list (cdr master-menu-list))
  881.     
  882.     ;; Only insert detailed master menu if there is one....
  883.     (if (car (car master-menu-list))
  884.         (insert texinfo-master-menu-header))
  885.     
  886.     ;; Now, insert all the other menus
  887.     
  888.     ;; The menu master-menu-list has a form like this:
  889.     ;; ((("beta"  "alpha") "title-A")
  890.     ;;  (("delta" "gamma") "title-B"))
  891.     
  892.     (while master-menu-list
  893.       
  894.       (message
  895.        "Inserting menu for %s .... " (car (cdr (car master-menu-list))))
  896.       ;; insert title of menu section
  897.       (insert "\n" (car (cdr (car master-menu-list))) "\n\n")
  898.       
  899.       ;; insert each menu entry
  900.       (setq this-very-menu-list (reverse (car (car master-menu-list))))
  901.       (while this-very-menu-list
  902.         (insert "* " (car this-very-menu-list) "\n")
  903.         (setq this-very-menu-list (cdr this-very-menu-list)))
  904.       
  905.       (setq master-menu-list (cdr master-menu-list)))
  906.     
  907.     ;; Finish menu
  908.     (insert "@end menu\n\n")))
  909.  
  910. (defvar texinfo-master-menu-header
  911.   "\n --- The Detailed Node Listing ---\n"
  912.   "String inserted before lower level entries in Texinfo master menu.
  913. It comes after the chapter-level menu entries.")
  914.  
  915. (defun texinfo-locate-menu-p ()
  916.   "Find the next menu in the texinfo file.
  917. If found, leave point after word `menu' on the `@menu' line, and return t.
  918. If a menu is not found, do not move point and return nil."
  919.   (re-search-forward "\\(^@menu\\)" nil t))
  920.  
  921. (defun texinfo-copy-menu-title  ()
  922.   "Return the title of the section preceding the menu as a string.
  923. If such a title cannot be found, return an empty string.  Do not move
  924. point."
  925.   (let ((case-fold-search t))
  926.     (save-excursion
  927.       (if (re-search-backward
  928.            (concat
  929.             "\\(^@top"
  930.             "\\|"                         ; or
  931.             texinfo-section-types-regexp  ; all other section types
  932.             "\\)")
  933.            nil
  934.            t)
  935.           (progn
  936.             (beginning-of-line)
  937.             (forward-word 1)              ; skip over section type
  938.             (skip-chars-forward " \t")    ; and over spaces
  939.             (buffer-substring
  940.              (point)
  941.              (progn (end-of-line) (point))))
  942.         ""))))
  943.  
  944. (defun texinfo-copy-menu ()
  945.   "Return the entries of an existing menu as a list.
  946. Start with point just after the word `menu' in the `@menu' line
  947. and leave point on the line before the `@end menu' line."
  948.   (let* (this-menu-list
  949.          (end-of-menu (texinfo-menu-end)) ; position of end of `@end menu'
  950.          (last-entry (save-excursion      ; position of beginning of
  951.                                           ; last `* ' entry
  952.                       (goto-char end-of-menu)
  953.                       ;; handle multi-line description
  954.                       (if (not (re-search-backward "^\* " nil t))
  955.                           (error "No entries in menu."))
  956.                       (point))))
  957.     (while (< (point) last-entry)
  958.       (if (re-search-forward  "^\* " end-of-menu t)
  959.           (progn
  960.             (setq this-menu-list
  961.                   (cons
  962.                    (buffer-substring 
  963.                     (point)
  964.                     ;; copy multi-line descriptions
  965.                     (save-excursion
  966.                       (re-search-forward "\\(^\* \\|^@e\\)" nil t)
  967.                       (- (point) 3)))
  968.                    this-menu-list)))))
  969.     this-menu-list))
  970.  
  971.  
  972. ;;; Determining the hierarchical level in the texinfo file
  973.  
  974. (defun texinfo-specific-section-type () 
  975.   "Return the specific type of next section, as a string.
  976. For example, \"unnumberedsubsec\".  Return \"top\" for top node.
  977.  
  978. Searches forward for a section.  Hence, point must be before the
  979. section whose type will be found.  Does not move point.  Signal an
  980. error if the node is not the top node and a section is not found."
  981.   (let ((case-fold-search t))
  982.     (save-excursion
  983.       (cond
  984.        ((re-search-forward "^@node [ \t]*top[ \t]*\\(,\\|$\\)"
  985. ;;; Following search limit by cph but causes a bug
  986. ;;;             (save-excursion
  987. ;;;               (end-of-line)
  988. ;;;               (point))
  989.                            nil
  990.                            t)
  991.         "top")
  992.        ((re-search-forward texinfo-section-types-regexp nil t)
  993.         (buffer-substring (progn (beginning-of-line) ; copy its name
  994.                                  (1+ (point)))
  995.                           (progn (forward-word 1)
  996.                                  (point))))
  997.        (t
  998.         (error
  999.          "texinfo-specific-section-type: Chapter or section not found."))))))
  1000.  
  1001. (defun texinfo-hierarchic-level ()
  1002.   "Return the general hierarchal level of the next node in a texinfo file.
  1003. Thus, a subheading or appendixsubsec is of type subsection."
  1004.   (let ((case-fold-search t))
  1005.     (cdr (assoc
  1006.           (texinfo-specific-section-type)
  1007.           texinfo-section-to-generic-alist))))
  1008.  
  1009.  
  1010. ;;; Locating the major positions
  1011.  
  1012. (defun texinfo-update-menu-region-beginning (level)  
  1013.   "Locate beginning of higher level section this section is within.
  1014. Return position of the beginning of the node line; do not move point.
  1015. Thus, if this level is subsection, searches backwards for section node.
  1016. Only argument is a string of the general type of section."
  1017.   (let ((case-fold-search t))
  1018.     ;; !! Known bug: if section immediately follows top node, this
  1019.     ;; returns the beginning of the buffer as the beginning of the
  1020.     ;; higher level section.
  1021.     (cond
  1022.      ((or (string-equal "top" level)
  1023.           (string-equal "chapter" level))
  1024.       (save-excursion
  1025.         (goto-char (point-min))
  1026.         (re-search-forward "^@node [ \t]*top[ \t]*\\(,\\|$\\)" nil t)
  1027.         (beginning-of-line)
  1028.         (point)))
  1029.      (t
  1030.       (save-excursion
  1031.         (re-search-backward
  1032.          (concat
  1033.           "\\(^@node\\).*\n"              ; match node line
  1034.           "\\(\\(\\(^@c\\).*\n\\)"        ; match comment line, if any
  1035.           "\\|"                           ; or
  1036.           "\\(^@ifinfo[ ]*\n\\)\\)?"      ; ifinfo line, if any
  1037.           (eval
  1038.            (cdr (assoc level texinfo-update-menu-higher-regexps))))
  1039.          nil
  1040.          'goto-beginning)
  1041.         (point))))))
  1042.  
  1043. (defun texinfo-update-menu-region-end (level)  
  1044.   "Locate end of higher level section this section is within.
  1045. Return position; do not move point.  Thus, if this level is a
  1046. subsection, find the node for the section this subsection is within.
  1047. If level is top or chapter, returns end of file.  Only argument is a
  1048. string of the general type of section."
  1049.   (let ((case-fold-search t))
  1050.     (save-excursion
  1051.       (if (re-search-forward
  1052.            (concat
  1053.             "\\(^@node\\).*\n"            ; match node line
  1054.             "\\(\\(\\(^@c\\).*\n\\)"      ; match comment line, if any
  1055.             "\\|"                         ; or
  1056.             "\\(^@ifinfo[ ]*\n\\)\\)?"    ; ifinfo line, if any
  1057.             (eval
  1058.              ;; Never finds end of level above chapter so goes to end.
  1059.              (cdr (assoc level texinfo-update-menu-higher-regexps))))
  1060.            nil
  1061.            'goto-end)
  1062.           (match-beginning 1)
  1063.         (point-max)))))
  1064.  
  1065. (defun texinfo-menu-first-node (beginning end)
  1066.   "Locate first node of the section the menu will be placed in.  
  1067. Return position; do not move point.
  1068. The menu will be located just before this position.  
  1069.  
  1070. First argument is the position of the beginning of the section in
  1071. which the menu will be located; second argument is the position of the
  1072. end of that region; it limits the search."
  1073.   
  1074.   (save-excursion
  1075.     (goto-char beginning)
  1076.     (forward-line 1)
  1077.     (re-search-forward "^@node" end t)
  1078.     (beginning-of-line)
  1079.     (point)))
  1080.  
  1081.  
  1082. ;;; Alists and regular expressions for defining hierarchical levels
  1083.  
  1084. (defvar texinfo-section-to-generic-alist
  1085.   '(("top" . "top")
  1086.  
  1087.     ("chapter" . "chapter")
  1088.     ("unnumbered" . "chapter")
  1089.     ("majorheading" . "chapter")
  1090.     ("chapheading" . "chapter")
  1091.     ("appendix" . "chapter")
  1092.     
  1093.     ("section" . "section")
  1094.     ("unnumberedsec" . "section")
  1095.     ("heading" . "section")
  1096.     ("appendixsec" . "section")
  1097.     
  1098.     ("subsection" . "subsection")
  1099.     ("unnumberedsubsec" . "subsection")
  1100.     ("subheading" . "subsection")
  1101.     ("appendixsubsec" . "subsection")
  1102.     
  1103.     ("subsubsection" . "subsubsection")
  1104.     ("unnumberedsubsubsec" . "subsubsection")
  1105.     ("subsubheading" . "subsubsection")
  1106.     ("appendixsubsubsec" . "subsubsection"))
  1107.   "*An alist of specific and corresponding generic Texinfo section types.
  1108. The keys are strings specifying specific types of section; the values
  1109. are strings of their corresponding general types.")
  1110.  
  1111. ;; We used to look for just sub, but that found @subtitle.
  1112. (defvar texinfo-section-types-regexp
  1113.   "^@\\(chapter \\|sect\\|subs\\|subh\\|unnum\\|major\\|chapheading \\|heading \\|appendix\\)"
  1114.   "Regexp matching chapter, section, other headings (but not the top node).")
  1115.  
  1116. (defvar texinfo-chapter-level-regexp 
  1117.   "chapter\\|unnumbered \\|appendix \\|majorheading\\|chapheading"
  1118.   "Regular expression matching just the Texinfo chapter level headings.")
  1119.  
  1120. (defvar texinfo-section-level-regexp 
  1121.   "section\\|unnumberedsec\\|heading \\|appendixsec"
  1122.   "Regular expression matching just the Texinfo section level headings.")
  1123.  
  1124. (defvar texinfo-subsection-level-regexp 
  1125.   "subsection\\|unnumberedsubsec\\|subheading\\|appendixsubsec"
  1126.   "Regular expression matching just the Texinfo subsection level headings.")
  1127.  
  1128. (defvar texinfo-subsubsection-level-regexp
  1129.   "subsubsection\\|unnumberedsubsubsec\\|subsubheading\\|appendixsubsubsec"
  1130.   "Regular expression matching just the Texinfo subsubsection level headings.")
  1131.  
  1132. (defvar texinfo-update-menu-same-level-regexps
  1133.   '(("top" . "top[ \t]+")
  1134.     ("chapter" . 
  1135.      (concat "\\(^@\\)\\(" texinfo-chapter-level-regexp "\\)[ \t]*"))
  1136.     ("section" . 
  1137.      (concat "\\(^@\\)\\(" texinfo-section-level-regexp "\\)[ \t]*"))
  1138.     ("subsection" .  
  1139.      (concat "\\(^@\\)\\(" texinfo-subsection-level-regexp "\\)[ \t]+"))
  1140.     ("subsubsection" . 
  1141.      (concat "\\(^@\\)\\(" texinfo-subsubsection-level-regexp "\\)[ \t]+")))
  1142.   "*Regexps for searching for same level sections in a Texinfo file.
  1143. The keys are strings specifying the general hierarchical level in the
  1144. document; the values are regular expressions.")
  1145.  
  1146. (defvar texinfo-update-menu-higher-regexps
  1147.   '(("top" . "^@node [ \t]*DIR") 
  1148.     ("chapter" . "^@node [ \t]*top[ \t]*\\(,\\|$\\)")
  1149.     ("section" .
  1150.      (concat 
  1151.       "\\(^@\\("
  1152.       texinfo-chapter-level-regexp
  1153.       "\\)[ \t]*\\)"))
  1154.     ("subsection" .
  1155.      (concat 
  1156.       "\\(^@\\("
  1157.       texinfo-section-level-regexp
  1158.       "\\|"
  1159.       texinfo-chapter-level-regexp
  1160.       "\\)[ \t]*\\)"))
  1161.     ("subsubsection" .
  1162.      (concat 
  1163.       "\\(^@\\("
  1164.       texinfo-subsection-level-regexp
  1165.       "\\|"
  1166.       texinfo-section-level-regexp
  1167.       "\\|"
  1168.       texinfo-chapter-level-regexp
  1169.       "\\)[ \t]*\\)")))
  1170.   "*Regexps for searching for higher level sections in a Texinfo file.
  1171. The keys are strings specifying the general hierarchical level in the
  1172. document; the values are regular expressions.")
  1173.  
  1174. (defvar texinfo-update-menu-lower-regexps
  1175.   '(("top" . 
  1176.      (concat 
  1177.       "\\(^@\\("
  1178.       texinfo-chapter-level-regexp
  1179.       "\\|"
  1180.       texinfo-section-level-regexp
  1181.       "\\|"
  1182.       texinfo-subsection-level-regexp
  1183.       "\\|"
  1184.       texinfo-subsubsection-level-regexp
  1185.       "\\)[ \t]*\\)"))
  1186.     ("chapter" . 
  1187.      (concat 
  1188.       "\\(^@\\("
  1189.       texinfo-section-level-regexp
  1190.       "\\|"
  1191.       texinfo-subsection-level-regexp
  1192.       "\\|"
  1193.       texinfo-subsubsection-level-regexp
  1194.       "\\)[ \t]*\\)"))
  1195.     ("section" .
  1196.      (concat 
  1197.       "\\(^@\\("
  1198.       texinfo-subsection-level-regexp
  1199.       "\\|"
  1200.       texinfo-subsubsection-level-regexp
  1201.       "\\)[ \t]+\\)"))
  1202.     ("subsection" .
  1203.      (concat 
  1204.       "\\(^@\\("
  1205.       texinfo-subsubsection-level-regexp
  1206.       "\\)[ \t]+\\)"))
  1207.     ("subsubsection" . "nothing lower"))
  1208.   "*Regexps for searching for lower level sections in a Texinfo file.
  1209. The keys are strings specifying the general hierarchical level in the
  1210. document; the values are regular expressions.")
  1211.  
  1212.  
  1213. ;;; Updating a node
  1214.  
  1215. ;;;###autoload
  1216. (defun texinfo-update-node (&optional region-p)
  1217.   "Without any prefix argument, update the node in which point is located.
  1218. Non-nil argument (prefix, if interactive) means update the nodes in the
  1219. marked region.
  1220.  
  1221. The functions for creating or updating nodes and menus, and their
  1222. keybindings, are:
  1223.  
  1224.     texinfo-update-node (&optional region-p)    \\[texinfo-update-node]
  1225.     texinfo-every-node-update ()                \\[texinfo-every-node-update]
  1226.     texinfo-sequential-node-update (&optional region-p)
  1227.  
  1228.     texinfo-make-menu (&optional region-p)      \\[texinfo-make-menu]
  1229.     texinfo-all-menus-update ()                 \\[texinfo-all-menus-update]
  1230.     texinfo-master-menu ()
  1231.  
  1232.     texinfo-indent-menu-description (column &optional region-p)
  1233.  
  1234. The `texinfo-column-for-description' variable specifies the column to
  1235. which menu descriptions are indented. Its default value is 32."
  1236.   
  1237.   (interactive "P")
  1238.   (if (not region-p)
  1239.       ;; update a single node
  1240.       (let ((auto-fill-function nil) (auto-fill-hook nil))
  1241.         (if (not (re-search-backward "^@node" (point-min) t))
  1242.             (error "Node line not found before this position."))
  1243.         (texinfo-update-the-node)
  1244.         (message "Done...updated the node.  You may save the buffer."))
  1245.     ;; else
  1246.     (let ((auto-fill-function nil)
  1247.       (auto-fill-hook nil)
  1248.           (beginning (region-beginning))
  1249.       (end (region-end)))
  1250.       (if (= end beginning)
  1251.           (error "Please mark a region!"))
  1252.       (save-restriction
  1253.     (narrow-to-region beginning end)
  1254.     (goto-char beginning)
  1255.         (push-mark (point) t)
  1256.     (while (re-search-forward "^@node" (point-max) t)
  1257.           (beginning-of-line)            
  1258.           (texinfo-update-the-node))
  1259.         (message "Done...updated nodes in region.  You may save the buffer.")))))
  1260.  
  1261. ;;;###autoload
  1262. (defun texinfo-every-node-update ()
  1263.   "Update every node in a Texinfo file."
  1264.   (interactive)
  1265.   (save-excursion
  1266.     (push-mark (point-max) t)
  1267.     (goto-char (point-min))
  1268.     (texinfo-update-node t)
  1269.     (message "Done...updated every node.       You may save the buffer.")))
  1270.  
  1271. (defun texinfo-update-the-node ()
  1272.   "Update one node.  Point must be at the beginning of node line.  
  1273. Leave point at the end of the node line."
  1274.   (texinfo-check-for-node-name)
  1275.   (texinfo-delete-existing-pointers)
  1276.   (message "Updating node: %s ... " (texinfo-copy-node-name))
  1277.   (save-restriction
  1278.     (widen)
  1279.     (let*
  1280.         ((case-fold-search t)
  1281.          (level (texinfo-hierarchic-level))
  1282.          (beginning (texinfo-update-menu-region-beginning level))
  1283.          (end (texinfo-update-menu-region-end level)))
  1284.       (if (string-equal level "top")
  1285.           (texinfo-top-pointer-case)
  1286.         ;; else
  1287.         (texinfo-insert-pointer beginning end level 'next)
  1288.         (texinfo-insert-pointer beginning end level 'previous)
  1289.         (texinfo-insert-pointer beginning end level 'up)
  1290.         (texinfo-clean-up-node-line)))))
  1291.  
  1292. (defun texinfo-top-pointer-case ()
  1293.   "Insert pointers in the Top node.  This is a special case.
  1294.  
  1295. The `Next' pointer is a pointer to a chapter or section at a lower
  1296. hierarchical level in the file.  The `Previous' and `Up' pointers are
  1297. to `(dir)'.  Point must be at the beginning of the node line, and is
  1298. left at the end of the node line."
  1299.  
  1300.   (texinfo-clean-up-node-line)
  1301.   (insert ", " 
  1302.           (save-excursion
  1303.             ;; There may be an @chapter or other such command between
  1304.             ;; the top node line and the next node line, as a title
  1305.             ;; for an `ifinfo' section. This @chapter command must
  1306.             ;; must be skipped.  So the procedure is to search for
  1307.             ;; the next `@node' line, and then copy its name.
  1308.             (if (re-search-forward "^@node" nil t)
  1309.                 (progn
  1310.                   (beginning-of-line)
  1311.                   (texinfo-copy-node-name))
  1312.               " "))
  1313.           ", (dir), (dir)"))
  1314.  
  1315. (defun texinfo-check-for-node-name ()
  1316.   "Determine whether the node has a node name.  Prompt for one if not.
  1317. Point must be at beginning of node line.  Does not move point."
  1318.   (save-excursion
  1319.     (let ((initial (texinfo-copy-next-section-title)))
  1320.       ;; This is not clean.  Use `interactive' to read the arg.
  1321.       (forward-word 1)                    ; skip over node command
  1322.       (skip-chars-forward " \t")          ; and over spaces
  1323.       (if (not (looking-at "[^,\t\n ]+")) ; regexp based on what Info looks for
  1324.                                           ; alternatively, use "[a-zA-Z]+"
  1325.         (let ((node-name
  1326.                (read-from-minibuffer
  1327.                 "Node name (use no @, commas, colons, or apostrophes): "
  1328.                 initial)))
  1329.           (insert " " node-name))))))
  1330.  
  1331. (defun texinfo-delete-existing-pointers ()
  1332.   "Delete `Next', `Previous', and `Up' pointers.  
  1333. Starts from the current position of the cursor, and searches forward
  1334. on the line for a comma and if one is found, deletes the rest of the
  1335. line, including the comma.  Leaves point at beginning of line."
  1336.   (if (search-forward "," (save-excursion (end-of-line) (point)) t)
  1337.       (progn
  1338.         (goto-char (1- (point)))
  1339.         (kill-line nil)))
  1340.   (beginning-of-line))
  1341.  
  1342. (defun texinfo-find-pointer (beginning end level direction)
  1343.   "Move point to section associated with next, previous, or up pointer.
  1344. Return type of pointer (either 'normal or 'no-pointer).
  1345.  
  1346. The first and second arguments bound the search for a pointer to the
  1347. beginning and end, respectively, of the enclosing higher level
  1348. section.  The third argument is a string specifying the general kind
  1349. of section such as \"chapter\ or \"section\".  When looking for the
  1350. `Next' pointer, the section found will be at the same hierarchical
  1351. level in the Texinfo file; when looking for the `Previous' pointer,
  1352. the section found will be at the same or higher hierarchical level in
  1353. the Texinfo file; when looking for the `Up' pointer, the section found
  1354. will be at some level higher in the Texinfo file.  The fourth argument
  1355. \(one of 'next, 'previous, or 'up\) specifies whether to find the
  1356. `Next', `Previous', or `Up' pointer."
  1357.   (let ((case-fold-search t))
  1358.     (cond ((eq direction 'next)
  1359.            (forward-line 3)             ; skip over current node
  1360.            ;; Search for section commands accompanied by node lines;
  1361.            ;; ignore section commands in the middle of nodes.
  1362.            (if (re-search-forward
  1363.                 ;; A `Top' node is never a next pointer, so won't find it.
  1364.                 (concat
  1365.                  ;; Match node line.
  1366.                  "\\(^@node\\).*\n"         
  1367.                  ;; Match comment or ifinfo line, if any
  1368.                  "\\(\\(\\(^@c\\).*\n\\)\\|\\(^@ifinfo[ ]*\n\\)\\)?" 
  1369.                  (eval
  1370.                   (cdr (assoc level texinfo-update-menu-same-level-regexps))))
  1371.                 end
  1372.                 t)
  1373.                'normal
  1374.              'no-pointer))
  1375.           ((eq direction 'previous)
  1376.            (if (re-search-backward
  1377.                 (concat
  1378.                  "\\("
  1379.                  ;; Match node line.
  1380.                  "\\(^@node\\).*\n"         
  1381.                  ;; Match comment or ifinfo line, if any
  1382.                  "\\(\\(\\(^@c\\).*\n\\)\\|\\(^@ifinfo[ ]*\n\\)\\)?" 
  1383.                  (eval
  1384.                   (cdr (assoc level texinfo-update-menu-same-level-regexps)))
  1385.                  "\\|"
  1386.                  ;; Match node line.
  1387.                  "\\(^@node\\).*\n"         
  1388.                  ;; Match comment or ifinfo line, if any
  1389.                  "\\(\\(\\(^@c\\).*\n\\)\\|\\(^@ifinfo[ ]*\n\\)\\)?" 
  1390.                  (eval
  1391.                   (cdr (assoc level texinfo-update-menu-higher-regexps)))
  1392.                  "\\|"
  1393.                  ;; Handle `Top' node specially.
  1394.                  "^@node [ \t]*top[ \t]*\\(,\\|$\\)"
  1395.                  "\\)")
  1396.                 beginning
  1397.                 t)
  1398.                'normal
  1399.              'no-pointer))
  1400.           ((eq direction 'up)
  1401.            (if (re-search-backward
  1402.                 (concat
  1403.                  "\\("
  1404.                  ;; Match node line.
  1405.                  "\\(^@node\\).*\n"         
  1406.                  ;; Match comment or ifinfo line, if any
  1407.                  "\\(\\(\\(^@c\\).*\n\\)\\|\\(^@ifinfo[ ]*\n\\)\\)?" 
  1408.                  (eval (cdr (assoc level texinfo-update-menu-higher-regexps)))
  1409.                  "\\|"
  1410.                  ;; Handle `Top' node specially.
  1411.                  "^@node [ \t]*top[ \t]*\\(,\\|$\\)"
  1412.                  "\\)")
  1413.                 (save-excursion
  1414.                   (goto-char beginning)
  1415.                   (beginning-of-line)
  1416.                   (point))
  1417.                 t)
  1418.                'normal
  1419.              'no-pointer))
  1420.           (t
  1421.            (error "texinfo-find-pointer: lack proper arguments")))))
  1422.  
  1423. (defun texinfo-pointer-name (kind)
  1424.   "Return the node name preceding the section command.
  1425. The argument is the kind of section, either normal or no-pointer."
  1426.   (let (name)
  1427.     (cond ((eq kind 'normal)
  1428.            (end-of-line)                ; this handles prev node top case
  1429.            (re-search-backward          ; when point is already 
  1430.             "^@node"                    ; at the beginning of @node line
  1431.             (save-excursion (forward-line -3))
  1432.             t)
  1433.            (setq name (texinfo-copy-node-name)))
  1434.       ((eq kind 'no-pointer)
  1435.        (setq name " ")))    ; put a blank in the pointer slot
  1436.     name))
  1437.  
  1438. (defun texinfo-insert-pointer (beginning end level direction)
  1439.   "Insert the `Next', `Previous' or `Up' node name at point.
  1440. Move point forward.  
  1441.  
  1442. The first and second arguments bound the search for a pointer to the
  1443. beginning and end, respectively, of the enclosing higher level
  1444. section.  The third argument is the hierarchical level of the Texinfo
  1445. file, a string such as \"section\".  The fourth argument is direction
  1446. towards which the pointer is directed, one of `next, `previous, or
  1447. 'up."
  1448.  
  1449.   (end-of-line)
  1450.   (insert
  1451.    ", "
  1452.    (save-excursion
  1453.      (texinfo-pointer-name
  1454.       (texinfo-find-pointer beginning end level direction)))))
  1455.  
  1456. (defun texinfo-clean-up-node-line ()
  1457.   "Remove extra commas, if any, at end of node line."
  1458.   (end-of-line)
  1459.   (skip-chars-backward ", ")
  1460.   (delete-region (point) (save-excursion (end-of-line) (point))))
  1461.  
  1462.  
  1463. ;;; Updating nodes sequentially
  1464. ; These sequential update functions insert `Next' or `Previous'
  1465. ; pointers that point to the following or preceding nodes even if they
  1466. ; are at higher or lower hierarchical levels.  This means that if a
  1467. ; section contains one or more subsections, the section's `Next'
  1468. ; pointer will point to the subsection and not the following section.
  1469. ; (The subsection to which `Next' points will most likely be the first
  1470. ; item on the section's menu.)
  1471.  
  1472. ;;;###autoload
  1473. (defun texinfo-sequential-node-update (&optional region-p)
  1474.   "Update one node (or many) in a Texinfo file with sequential pointers.
  1475.  
  1476. This function causes the `Next' or `Previous' pointer to point to the
  1477. immediately preceding or following node, even if it is at a higher or
  1478. lower hierarchical level in the document.  Continually pressing `n' or
  1479. `p' takes you straight through the file.
  1480.  
  1481. Without any prefix argument, update the node in which point is located.
  1482. Non-nil argument (prefix, if interactive) means update the nodes in the
  1483. marked region.
  1484.  
  1485. This command makes it awkward to navigate among sections and
  1486. subsections; it should be used only for those documents that are meant
  1487. to be read like a novel rather than a reference, and for which the
  1488. Info `g*' command is inadequate."
  1489.   
  1490.   (interactive "P")
  1491.   (if (not region-p)
  1492.       ;; update a single node
  1493.       (let ((auto-fill-function nil) (auto-fill-hook nil))
  1494.         (if (not (re-search-backward "^@node" (point-min) t))
  1495.             (error "Node line not found before this position."))
  1496.         (texinfo-sequentially-update-the-node)
  1497.         (message 
  1498.          "Done...sequentially updated the node .  You may save the buffer."))
  1499.     ;; else
  1500.     (let ((auto-fill-function nil)
  1501.       (auto-fill-hook nil)
  1502.           (beginning (region-beginning))
  1503.           (end (region-end)))
  1504.       (if (= end beginning)
  1505.           (error "Please mark a region!"))
  1506.       (save-restriction
  1507.         (narrow-to-region beginning end)
  1508.         (goto-char beginning)
  1509.         (push-mark (point) t)
  1510.         (while (re-search-forward "^@node" (point-max) t)
  1511.           (beginning-of-line)            
  1512.           (texinfo-sequentially-update-the-node))
  1513.         (message 
  1514.          "Done...updated the nodes in sequence.  You may save the buffer.")))))
  1515.  
  1516. (defun texinfo-sequentially-update-the-node ()
  1517.   "Update one node such that the pointers are sequential. 
  1518. A `Next' or `Previous' pointer points to any preceding or following node,
  1519. regardless of its hierarchical level."
  1520.  
  1521.         (texinfo-check-for-node-name)
  1522.         (texinfo-delete-existing-pointers)
  1523.         (message 
  1524.          "Sequentially updating node: %s ... " (texinfo-copy-node-name))
  1525.         (save-restriction
  1526.           (widen)
  1527.           (let*
  1528.               ((case-fold-search t)
  1529.                (level (texinfo-hierarchic-level)))
  1530.             (if (string-equal level "top")
  1531.                 (texinfo-top-pointer-case)
  1532.               ;; else
  1533.               (texinfo-sequentially-insert-pointer level 'next)
  1534.               (texinfo-sequentially-insert-pointer level 'previous)
  1535.               (texinfo-sequentially-insert-pointer level 'up)
  1536.               (texinfo-clean-up-node-line)))))
  1537.  
  1538. (defun texinfo-sequentially-find-pointer (level direction)
  1539.   "Find next or previous pointer sequentially in Texinfo file, or up pointer.
  1540. Move point to section associated with the pointer.  Find point even if
  1541. it is in a different section.
  1542.  
  1543. Return type of pointer (either 'normal or 'no-pointer).
  1544.  
  1545. The first argument is a string specifying the general kind of section
  1546. such as \"chapter\ or \"section\".  The section found will be at the
  1547. same hierarchical level in the Texinfo file, or, in the case of the up
  1548. pointer, some level higher.  The second argument (one of 'next,
  1549. 'previous, or 'up) specifies whether to find the `Next', `Previous',
  1550. or `Up' pointer."
  1551.   (let ((case-fold-search t))  
  1552.     (cond ((eq direction 'next)
  1553.            (forward-line 3)             ; skip over current node
  1554.            (if (re-search-forward 
  1555.                 texinfo-section-types-regexp
  1556.                 (point-max)
  1557.                 t)
  1558.                'normal
  1559.              'no-pointer))
  1560.           ((eq direction 'previous)
  1561.            (if (re-search-backward 
  1562.                 texinfo-section-types-regexp
  1563.                 (point-min)
  1564.                 t)
  1565.                'normal
  1566.              'no-pointer))
  1567.           ((eq direction 'up)
  1568.            (if (re-search-backward
  1569.                 (eval (cdr (assoc level texinfo-update-menu-higher-regexps)))
  1570.                 beginning
  1571.                 t)
  1572.                'normal
  1573.              'no-pointer))
  1574.           (t
  1575.            (error "texinfo-sequential-find-pointer: lack proper arguments")))))
  1576.  
  1577. (defun texinfo-sequentially-insert-pointer (level direction)
  1578.   "Insert the `Next', `Previous' or `Up' node name at point.
  1579. Move point forward.  
  1580.  
  1581. The first argument is the hierarchical level of the Texinfo file, a
  1582. string such as \"section\".  The second argument is direction, one of
  1583. `next, `previous, or 'up."
  1584.  
  1585.   (end-of-line)
  1586.   (insert
  1587.    ", "
  1588.    (save-excursion
  1589.      (texinfo-pointer-name
  1590.       (texinfo-sequentially-find-pointer level direction)))))
  1591.  
  1592.  
  1593. ;;; Inserting `@node' lines
  1594. ; The `texinfo-insert-node-lines' function inserts `@node' lines as needed
  1595. ; before the `@chapter', `@section', and such like lines of a region
  1596. ; in a Texinfo file.
  1597.  
  1598. (defun texinfo-insert-node-lines (beginning end &optional title-p)
  1599.   "Insert missing `@node' lines in region of Texinfo file.
  1600. Non-nil argument (prefix, if interactive) means also to insert the
  1601. section titles as node names; and also to insert the section titles as
  1602. node names in pre-existing @node lines that lack names."
  1603.   (interactive "r\nP")
  1604.  
  1605.   ;; Use marker; after inserting node lines, leave point at end of
  1606.   ;; region and mark at beginning.
  1607.  
  1608.   (let (beginning-marker end-marker title last-section-position)
  1609.  
  1610.     ;; Save current position on mark ring and set mark to end.
  1611.     (push-mark end t)                   
  1612.     (setq end-marker (mark-marker))        
  1613.  
  1614.     (goto-char beginning)
  1615.     (while (re-search-forward
  1616.             texinfo-section-types-regexp 
  1617.             end-marker
  1618.             'end)
  1619.       ;; Copy title if desired.
  1620.       (if title-p
  1621.           (progn 
  1622.             (beginning-of-line)
  1623.             (forward-word 1)
  1624.             (skip-chars-forward " \t")
  1625.             (setq title (buffer-substring
  1626.                          (point)
  1627.                          (save-excursion (end-of-line) (point))))))
  1628.       ;; Insert node line if necessary.
  1629.       (if (re-search-backward
  1630.            "^@node" 
  1631.            ;; Avoid finding previous node line if node lines are close.
  1632.            (or last-section-position    
  1633.                (save-excursion (forward-line -2) (point))) t)
  1634.           ;;  @node is present, and point at beginning of that line
  1635.           (forward-word 1)          ; Leave point just after @node.
  1636.         ;; Else @node missing; insert one.
  1637.         (beginning-of-line)         ; Beginning of `@section' line.
  1638.         (insert "@node\n")
  1639.         (backward-char 1))          ; Leave point just after `@node'.
  1640.       ;; Insert title if desired.
  1641.       (if title-p
  1642.           (progn
  1643.             (skip-chars-forward " \t")
  1644.             ;; Use regexp based on what info looks for
  1645.             ;; (alternatively, use "[a-zA-Z]+");
  1646.             ;; this means we only insert a title if none exists.
  1647.             (if (not (looking-at "[^,\t\n ]+")) 
  1648.                 (progn
  1649.                   (beginning-of-line) 
  1650.                   (forward-word 1)
  1651.                   (insert " " title)
  1652.                   (message "Inserted title %s ... " title)))))
  1653.       ;; Go forward beyond current section title.
  1654.       (re-search-forward texinfo-section-types-regexp 
  1655.                          (save-excursion (forward-line 3) (point)) t)
  1656.       (setq last-section-position (point))
  1657.       (forward-line 1))
  1658.  
  1659.     ;; Leave point at end of region, mark at beginning.
  1660.     (set-mark beginning)
  1661.  
  1662.     (if title-p
  1663.       (message
  1664.        "Done inserting node lines and titles.  You may save the buffer.")
  1665.     (message "Done inserting node lines.  You may save the buffer."))))
  1666.  
  1667.  
  1668. ;;; Update and create menus for multi-file Texinfo sources
  1669.  
  1670. ;;  1. M-x texinfo-multiple-files-update 
  1671. ;;
  1672. ;;     Read the include file list of an outer Texinfo file and
  1673. ;;     update all highest level nodes in the files listed and insert a
  1674. ;;     main menu in the outer file after its top node.
  1675.  
  1676. ;;  2. C-u M-x texinfo-multiple-files-update 
  1677. ;;
  1678. ;;     Same as 1, but insert a master menu.  (Saves reupdating lower
  1679. ;;     level menus and nodes.)  This command simply reads every menu,
  1680. ;;     so if the menus are wrong, the master menu will be wrong.
  1681. ;;     Similarly, if the lower level node pointers are wrong, they
  1682. ;;     will stay wrong.
  1683.  
  1684. ;;  3. C-u 2 M-x texinfo-multiple-files-update 
  1685. ;;
  1686. ;;     Read the include file list of an outer Texinfo file and
  1687. ;;     update all nodes and menus in the files listed and insert a
  1688. ;;     master menu in the outer file after its top node.
  1689.  
  1690. ;;; Note: these functions:
  1691. ;;;
  1692. ;;;   * Do not save or delete any buffers.  You may fill up your memory.
  1693. ;;;   * Do not handle any pre-existing nodes in outer file.  
  1694. ;;;     Hence, you may need a file for indices.
  1695.  
  1696.  
  1697. ;;; Auxiliary functions for multiple file updating
  1698.  
  1699. (defun texinfo-multi-file-included-list (outer-file)
  1700.   "Return a list of the included files in OUTER-FILE."
  1701.   (let ((included-file-list (list outer-file))
  1702.         start)
  1703.     (save-excursion
  1704.       (switch-to-buffer (find-file-noselect outer-file))
  1705.       (widen)
  1706.       (goto-char (point-min))
  1707.       (while (re-search-forward "^@include" nil t)
  1708.         (skip-chars-forward " \t")
  1709.         (setq start (point))
  1710.         (end-of-line)
  1711.         (skip-chars-backward " \t")   
  1712.         (setq included-file-list
  1713.               (cons (buffer-substring start (point))
  1714.                     included-file-list)))
  1715.       (nreverse included-file-list))))
  1716.  
  1717. (defun texinfo-copy-next-section-title ()
  1718.   "Return the name of the immediately following section as a string.
  1719.  
  1720. Start with point at the beginning of the node line.  Leave point at the
  1721. same place.  If there is no title, returns an empty string."
  1722.  
  1723.   (save-excursion
  1724.     (end-of-line)
  1725.     (let ((node-end (or 
  1726.                         (save-excursion
  1727.                           (if (re-search-forward "\\(^@node\\)" nil t)
  1728.                               (match-beginning 0)))
  1729.                         (point-max))))
  1730.       (if (re-search-forward texinfo-section-types-regexp node-end t)
  1731.           (progn
  1732.             (beginning-of-line)
  1733.             ;; copy title
  1734.             (let ((title
  1735.                    (buffer-substring
  1736.                     (progn (forward-word 1)           ; skip over section type
  1737.                            (skip-chars-forward " \t") ; and over spaces
  1738.                            (point))
  1739.                     (progn (end-of-line) (point)))))
  1740.               title))
  1741.         ""))))
  1742.  
  1743. (defun texinfo-multi-file-update (files &optional update-everything)
  1744.   "Update first node pointers in each file in FILES.
  1745. Return a list of the node names.
  1746.  
  1747. The first file in the list is an outer file; the remaining are
  1748. files included in the outer file with `@include' commands.
  1749.  
  1750. If optional arg UPDATE-EVERYTHING non-nil, update every menu and
  1751. pointer in each of the included files.
  1752.  
  1753. Also update the `Top' level node pointers of the outer file.
  1754.  
  1755. Requirements:
  1756.  
  1757.   * the first file in the FILES list must be the outer file,
  1758.   * each of the included files must contain exactly one highest
  1759.     hierarchical level node, 
  1760.   * this node must be the first node in the included file,
  1761.   * each highest hierarchical level node must be of the same type.
  1762.  
  1763. Thus, normally, each included file contains one, and only one,
  1764. chapter."
  1765.  
  1766. ; The menu-list has the form:
  1767. ;     \(\(\"node-name1\" . \"title1\"\) 
  1768. ;       \(\"node-name2\" . \"title2\"\) ... \)
  1769. ; However, there does not need to be a title field and this function
  1770. ; does not fill it; however a comment tells you how to do so.
  1771. ; You would use the title field if you wanted to insert titles in the
  1772. ; description slot of a menu as a description.
  1773.   
  1774.   (let ((case-fold-search t)
  1775.         menu-list)
  1776.     
  1777.     ;; Find the name of the first node of the first included file.
  1778.     (switch-to-buffer (find-file-noselect (car (cdr files))))
  1779.     (widen)
  1780.     (goto-char (point-min))
  1781.     (if (not (re-search-forward "^@node" nil t))
  1782.         (error "No `@node' line found in %s !" (buffer-name)))
  1783.     (beginning-of-line)
  1784.     (texinfo-check-for-node-name)
  1785.     (setq next-node-name (texinfo-copy-node-name))
  1786.     
  1787.     (setq menu-list
  1788.           (cons (cons 
  1789.                  next-node-name
  1790.                  (prog1 "" (forward-line 1)))
  1791.                 ;; Use following to insert section titles automatically.
  1792.                 ;; (texinfo-copy-next-section-title)
  1793.                 menu-list))
  1794.  
  1795.     ;; Go to outer file
  1796.     (switch-to-buffer (find-file-noselect (car files)))
  1797.     (goto-char (point-min))
  1798.     (if (not (re-search-forward "^@node [ \t]*top[ \t]*\\(,\\|$\\)" nil t))
  1799.         (error "This buffer needs a Top node!"))
  1800.     (beginning-of-line)
  1801.     (texinfo-delete-existing-pointers)
  1802.     (end-of-line)
  1803.     (insert ", " next-node-name ", (dir), (dir)")
  1804.     (beginning-of-line)
  1805.     (setq previous-node-name "Top")
  1806.     (setq files (cdr files))
  1807.     
  1808.     (while files
  1809.       
  1810.       (if (not (cdr files))
  1811.           ;; No next file
  1812.           (setq next-node-name "")
  1813.         ;; Else,
  1814.         ;; find the name of the first node in the next file.
  1815.         (switch-to-buffer (find-file-noselect (car (cdr files))))
  1816.         (widen)
  1817.         (goto-char (point-min))
  1818.         (if (not (re-search-forward "^@node" nil t))
  1819.             (error "No `@node' line found in %s !" (buffer-name)))
  1820.         (beginning-of-line)
  1821.         (texinfo-check-for-node-name)
  1822.         (setq next-node-name (texinfo-copy-node-name))
  1823.         (setq menu-list
  1824.               (cons (cons 
  1825.                      next-node-name
  1826.                      (prog1 "" (forward-line 1)))
  1827.                     ;; Use following to insert section titles automatically.
  1828.                     ;; (texinfo-copy-next-section-title)
  1829.                     menu-list)))
  1830.  
  1831.       ;; Go to node to be updated.
  1832.       (switch-to-buffer (find-file-noselect (car files)))
  1833.       (goto-char (point-min))
  1834.       (if (not (re-search-forward "^@node" nil t))
  1835.           (error "No `@node' line found in %s !" (buffer-name)))
  1836.       (beginning-of-line)
  1837.       
  1838.       ;; Update other menus and nodes if requested.
  1839.       (if update-everything (texinfo-all-menus-update t))
  1840.  
  1841.       (beginning-of-line)
  1842.       (texinfo-delete-existing-pointers)
  1843.       (end-of-line)
  1844.       (insert ", " next-node-name ", " previous-node-name ", " up-node-name)
  1845.       
  1846.       (beginning-of-line)
  1847.       (setq previous-node-name (texinfo-copy-node-name))
  1848.       
  1849.       (setq files (cdr files)))
  1850.     (nreverse menu-list)))
  1851.  
  1852. (defun texinfo-multi-files-insert-main-menu (menu-list)
  1853.   "Insert formatted main menu at point.
  1854. Indents the first line of the description, if any, to the value of
  1855. texinfo-column-for-description."
  1856.  
  1857.   (insert "@menu\n")
  1858.   (while menu-list
  1859.     ;; Every menu entry starts with a star and a space.
  1860.     (insert "* ")
  1861.     
  1862.     ;; Insert the node name (and menu entry name, if present).
  1863.     (let ((node-part (car (car menu-list))))
  1864.       (if (stringp node-part)
  1865.           ;; "Double colon" entry line; menu entry and node name are the same,
  1866.           (insert (format "%s::" node-part))  
  1867.         ;; "Single colon" entry line; menu entry and node name are different.
  1868.         (insert (format "%s: %s." (car node-part) (cdr node-part)))))
  1869.     
  1870.     ;; Insert the description, if present.
  1871.     (if (cdr (car menu-list))
  1872.         (progn
  1873.           ;; Move to right place.
  1874.           (indent-to texinfo-column-for-description 2) 
  1875.           ;; Insert description.
  1876.           (insert (format "%s" (cdr (car menu-list))))))  
  1877.  
  1878.     (insert "\n") ; end this menu entry
  1879.     (setq menu-list (cdr menu-list)))
  1880.   (insert "@end menu"))
  1881.  
  1882. (defun texinfo-multi-file-master-menu-list (files-list)
  1883.   "Return master menu list from files in FILES-LIST.
  1884. Menu entries in each file collected using `texinfo-master-menu-list'.
  1885.  
  1886. The first file in FILES-LIST must be the outer file; the others must
  1887. be the files included within it.  A main menu must already exist."
  1888.   (save-excursion
  1889.     (let (master-menu-list)
  1890.       (while files-list
  1891.         (switch-to-buffer (find-file-noselect (car files-list)))
  1892.         (message "Working on: %s " (current-buffer))
  1893.         (goto-char (point-min))
  1894.         (setq master-menu-list
  1895.               (append master-menu-list (texinfo-master-menu-list)))
  1896.         (setq files-list (cdr files-list)))
  1897.       master-menu-list)))
  1898.  
  1899.  
  1900. ;;; The multiple-file update function
  1901.  
  1902. (defun texinfo-multiple-files-update
  1903.   (outer-file &optional update-everything make-master-menu)
  1904.   "Update first node pointers in each file included in OUTER-FILE;
  1905. create or update the `Top' level node pointers and the main menu in
  1906. the outer file that refers to such nodes.  This does not create or
  1907. update menus or pointers within the included files.
  1908.  
  1909. With optional MAKE-MASTER-MENU argument (prefix arg, if interactive),
  1910. insert a master menu in OUTER-FILE in addition to creating or updating
  1911. pointers in the first @node line in each included file and creating or
  1912. updating the `Top' level node pointers of the outer file.  This does
  1913. not create or update other menus and pointers within the included
  1914. files.
  1915.  
  1916. With optional UPDATE-EVERYTHING argument (numeric prefix arg, if
  1917. interactive), update all the menus and all the `Next', `Previous', and
  1918. `Up' pointers of all the files included in OUTER-FILE before inserting
  1919. a master menu in OUTER-FILE.  Also, update the `Top' level node
  1920. pointers of OUTER-FILE.
  1921.  
  1922. Notes: 
  1923.  
  1924.   * this command does NOT save any files--you must save the
  1925.     outer file and any modified, included files.
  1926.  
  1927.   * except for the `Top' node, this command does NOT handle any
  1928.     pre-existing nodes in the outer file; hence, indices must be
  1929.     enclosed in an included file.
  1930.  
  1931. Requirements:
  1932.  
  1933.   * each of the included files must contain exactly one highest
  1934.     hierarchical level node, 
  1935.   * this highest node must be the first node in the included file,
  1936.   * each highest hierarchical level node must be of the same type.
  1937.  
  1938. Thus, normally, each included file contains one, and only one,
  1939. chapter."
  1940.   
  1941.   (interactive (cons
  1942.                 (read-string
  1943.                  "Name of outer `include' file: "
  1944.                  (buffer-file-name))
  1945.                 (cond ((not current-prefix-arg)
  1946.                        '(nil nil))
  1947.                       ((listp current-prefix-arg)
  1948.                        '(t nil))   ; make-master-menu 
  1949.                       ((numberp current-prefix-arg)
  1950.                        '(t t))     ; update-everything
  1951.                       )))
  1952.  
  1953.   (let* ((included-file-list (texinfo-multi-file-included-list outer-file))
  1954.          (files included-file-list)
  1955.          main-menu-list
  1956.          next-node-name
  1957.          previous-node-name
  1958.          (up-node-name "Top"))
  1959.  
  1960. ;;; Update the pointers 
  1961. ;;; and collect the names of the nodes and titles
  1962.     (setq main-menu-list (texinfo-multi-file-update files update-everything))
  1963.  
  1964. ;;; Insert main menu
  1965.  
  1966.   ;; Go to outer file
  1967.   (switch-to-buffer (find-file-noselect (car included-file-list)))
  1968.   (if (texinfo-old-menu-p
  1969.        (point-min)
  1970.        (save-excursion
  1971.          (re-search-forward "^@include")
  1972.          (beginning-of-line)
  1973.          (point)))
  1974.  
  1975.       ;; If found, leave point after word `menu' on the `@menu' line.
  1976.       (progn
  1977.         (texinfo-incorporate-descriptions main-menu-list)
  1978.         ;; Delete existing menu.
  1979.         (beginning-of-line)
  1980.         (delete-region
  1981.          (point)
  1982.          (save-excursion (re-search-forward "^@end menu") (point)))
  1983.         ;; Insert main menu
  1984.         (texinfo-multi-files-insert-main-menu main-menu-list))
  1985.  
  1986.     ;; Else no current menu; insert it before `@include'
  1987.     (texinfo-multi-files-insert-main-menu main-menu-list))
  1988.  
  1989. ;;; Insert master menu
  1990.  
  1991.   (if make-master-menu
  1992.       (progn
  1993.         ;; First, removing detailed part of any pre-existing master menu
  1994.         (goto-char (point-min))
  1995.         (if (re-search-forward texinfo-master-menu-header nil t)
  1996.             ;; Remove detailed master menu listing
  1997.             (progn
  1998.               (goto-char (match-beginning 0))
  1999.               (let ((end-of-detailed-menu-descriptions
  2000.                      (save-excursion     ; beginning of end menu line
  2001.                        (goto-char (texinfo-menu-end))
  2002.                        (beginning-of-line) (forward-char -1)
  2003.                        (point))))
  2004.                 (delete-region (point) end-of-detailed-menu-descriptions))))
  2005.  
  2006.         ;; Create a master menu and insert it
  2007.         (texinfo-insert-master-menu-list 
  2008.          (texinfo-multi-file-master-menu-list
  2009.           included-file-list)))))
  2010.  
  2011.   ;; Remove unwanted extra lines.
  2012.   (save-excursion
  2013.     (goto-char (point-min))
  2014.       
  2015.     (re-search-forward "^@menu")
  2016.     (forward-line -1)
  2017.     (insert  "\n") ; Ensure at least one blank line.
  2018.     (delete-blank-lines)
  2019.       
  2020.     (re-search-forward "^@end menu")
  2021.     (forward-line 1)
  2022.     (insert  "\n") ; Ensure at least one blank line.
  2023.     (delete-blank-lines))
  2024.  
  2025.   (message "Multiple files updated."))
  2026.  
  2027.  
  2028. ;;; Place `provide' at end of file.
  2029. (provide 'texnfo-upd)
  2030.  
  2031. ;;; texnfo-upd.el ends here
  2032.